home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00094_MatchGroupSetUp.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  3.6 KB  |  129 lines

  1. --
  2. -- MatchSetUp
  3. --
  4.  
  5. -- this class handles the pre-runtime initialization of Match Game data.
  6. -- this class can be discarded before protecting movies for distribution.
  7.  
  8. property ancestor
  9.  
  10. -- the following are constants:
  11. property spriteColor  -- the scoreColor of sprites that will be used for the Match Game
  12. property answerCast1, answerCast2, answerCast3  -- the casts of the answerKeys
  13.  
  14.  
  15. on new me
  16.   -- set up all constants first:
  17.   set spriteColor = 2  -- corresponds to green in the score. (0 = white)
  18.   set answerCast1 = the number of castLib "Match1"
  19.   set answerCast2 = the number of castLib "Match2"
  20.   
  21.   set ancestor = new (script "MatchGroupListMgmt")
  22.   setUp (me) -- automatic setup for authoring.
  23.   
  24.   return me
  25. end
  26.  
  27.  
  28. on destruct me
  29.   if objectP (ancestor) then destruct (ancestor)
  30.   set ancestor = 0
  31. end
  32.  
  33.  
  34. -- do all pre-runtime setup work for the class and return to starting frame:
  35. -- (frame motion disabled for Nystrom set)
  36. -- do NOT make this call from within other runtime code!
  37.  
  38. on setUp me
  39.   -- set startFrame = the frame
  40.   -- go frame setUpFrame
  41.   
  42.   -- initialize usable lists and check their integrity:
  43.   set spriteInfo = gatherSpriteInfo (me)
  44.   if not listP (spriteInfo) then
  45.     alert "Problem gathering sprite info."
  46.     return 0
  47.   end if
  48.   
  49.   set memberInfo = gatherMemberInfo (me)
  50.   if not listP (memberInfo) then
  51.     alert "Problem gathering member info."
  52.     return 0
  53.   end if
  54.   
  55.   -- add all correctly created lists to the project:
  56.   set initList = [:]
  57.   addProp (initList, #sprites, spriteInfo)
  58.   addProp (initList, #members, memberInfo)
  59.   setList (me, initList)
  60.   
  61.   -- go frame startFrame
  62.   
  63.   -- if we have gotten to this point then do an ancestor setUp:
  64.   return setUp (ancestor)
  65. end
  66.  
  67.  
  68.  
  69. -- gather information of sprites to be used in the Match Game:
  70.  
  71. on gatherSpriteInfo me
  72.   global gTotalSprites
  73.   set initList = [:]
  74.   set num = 0
  75.   
  76.   --cycle through all sprites:
  77.   repeat with spr = 1 to gTotalSprites
  78.     
  79.     -- sprites must be a certain color to be used in the Match Game:
  80.     if the scoreColor of sprite spr = spriteColor then
  81.       set num = num + 1
  82.       -- gather usable information:
  83.       set tmpLst = [#coverNum:the memberNum of sprite spr, #coverLib: the castLibNum of sprite spr, #loc:(the loc of sprite spr), #identifier:#empty, #myNum:0, #myLib:0, #matchSprite:0, #matchSprite2:0, #showFlag:0]
  84.       
  85.       -- add to the initList
  86.       addProp (initList, spr, tmpLst)
  87.     end if
  88.   end repeat
  89.   
  90.   
  91.   if (num/2)*2 <> num then 
  92.     alert "There are an uneven number of match sprites:"&&num
  93.     return 0
  94.   end if
  95.   
  96.   if not count (initList) then alert "There are no match sprites for this activity.  Check sprite score colors."
  97.   
  98.   return initList
  99. end
  100.  
  101.  
  102.  
  103. -- gather information on members and castLibs to be used in the match game:
  104.  
  105. on gatherMemberInfo me
  106.   set m1 = getAvailableMemberList (me, answerCast1)
  107.   set m2 = getAvailableMemberList (me, answerCast2)
  108.   -- set m3 = getAvailableMemberList (me, answerCast3)
  109.   
  110.   -- check that m1 has corresponding members in m2:
  111.   -- (currently there is no support for m3)
  112.   if not checkPropMatches (me, m1, m2) then 
  113.     put "Not all of the member names of castlib" && answerCast1 && "have matching members in castlib" && answerCast2 && "(See the message window for specifics)"
  114.     return 0
  115.   end if
  116.   
  117.   -- add possible animations for these members:
  118.   addAnimations (me, answerCast1, m1)
  119.   addAnimations (me, answerCast2, m2)
  120.   -- addAnimations (me, answerCast3, m3)
  121.   
  122.   -- gather the lists of potential members:
  123.   set memList = [:]
  124.   addProp (memList, answerCast1, m1)
  125.   addProp (memList, answerCast2, m2)
  126.   -- addProp (memList, answerCast3, m3)
  127.   
  128.   return memList
  129. end